I have a Java design element which uses Apache Abdera to get entries from an IBM Connections feed. This Java class is used in server-side javascript in an xpage.
When the Abdera client tries to get the Connections feed, it produces this exception:
java.lang.SecurityException: not allowed to make a socket connection to connections.isw.net.au,-1
I have tried adding this line to the java.policy file (in the section for permissions granted to all domains) on the Domino server and restarted the server:
permission java.net.SocketPermission "connections.isw.net.au", "connect";
Even with the socket permission, the SecurityException still occurs.
This isn't an agent, so there's no option to set the runtime security level. It depends entirely on the the java.policy file as far as I know.
How do I make Domino allow the socket connection?